Loading
Scriptbox
 VBScript Links 
 About VBscript 
 JavaScript Links 
 About JavaScript 
 Powershell Links 
 PSCRIPT the Script Launcher 
 PowerShell Shortcut Keys 
 About Powershell 
     VBScript
    JavaScript
    Powershell
Disclaimer
Contact
Latest 10 Scripts
Script search
  :: { Category } :: 0-9ABCDEFGHIJKLMNOPQRSTUVWXYZ
         

Search Options:  Determine  the  Follow-Up  Status  of  Outlook  Emails  

 Content of Determine the Follow-Up Status of Outlook Emails.vbs
MD5 Hash: A7DAC95B9BD4E9FCCA951402A5BC75B3
Const olFolderInbox = 6

Set objOutlook = CreateObject("Outlook.Application")
Set objNamespace = objOutlook.GetNamespace("MAPI")
Set objFolder = objNamespace.GetDefaultFolder(olFolderInbox)

Set colItems = objFolder.Items

For Each objItem in colItems
If objItem.FlagStatus = 1 Then
Wscript.Echo "Follow-up complete"
Wscript.Echo objItem.Subject
Wscript.Echo
End If

If objItem.FlagStatus = 2 Then
Wscript.Echo "Marked for follow-up"
Wscript.Echo objItem.Subject
Wscript.Echo
End If
Next



   © 2008 - 2013 Boris Toll      :: Scripts available: 6.481 ::      :: scriptbox.toll.at ::      :: powered by www.toll.at ::
  Google Entries:n/a
  Yahoo Backlinks:n/a
  Live Backlinks:n/a
  del.icio.us Bookmarks:n/a
  Technorati Links:n/a